home *** CD-ROM | disk | FTP | other *** search
/ Birth of Jesus Activity Center / Birth of Jesus Activity Center.iso / mac / data / babyj.dir / 00265_Script_265 < prev    next >
Text File  |  1997-11-02  |  400b  |  20 lines

  1. global titleTimoutTimer, titleTimoutTimerActive
  2.  
  3. on exitFrame
  4.   if titleTimoutTimerActive <> TRUE then
  5.     set titleTimoutTimer = the Timer
  6.     set titleTimoutTimerActive = TRUE
  7.     
  8.     go to the frame
  9.   else
  10.     if (the Timer - titleTimoutTimer) > 500 then
  11.       puppetsound 0
  12.       updateStage
  13.       
  14.       go "mainLoop"
  15.     else
  16.       go to the frame
  17.     end if
  18.   end if
  19.   
  20. end